/* Estilo base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Fondo general */
body {
    background-color: #f4f4f9;
    color: #333;
}

/* Contenedor principal */
.main-container {
    width: 100%;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilo del contenido */
.content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
    margin-top: 20px;
}

/* Títulos */
h1 {
    font-size: 2.5rem;
    color: #ea5898;
    margin-bottom: 20px;
}

/* Párrafos */
p {
    font-size: 1.1rem;
    color: #5b5b5b;
    margin-bottom: 20px;
}

/* Resaltar citas o menciones */
p strong {
    color: #efed3f;
    font-weight: bold;
}

/* Diseño de botones o enlaces de contacto si es necesario */
a.button {
    display: inline-block;
    background-color: #5bb9eb;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

a.button:hover {
    background-color: #ea5898;
}

/* General styles */
body {
font-family: 'Poppins', sans-serif;
background-color: #fdf6f6;
color: #333;
line-height: 1.6;
padding: 20px;
}

/* Header */
header {
background-color: #00c2f2;
padding: 1rem 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

header .title {
display: flex;
justify-content: center;
width: 100%;
margin-bottom: 10px;
}

header .title img {
max-height: 60px;
}

.navbar {
display: flex;
justify-content: center;
width: 100%;
}

.nav-links {
display: flex;
list-style: none;
align-items: center;
padding: 0;
margin: 0;
}

.nav-links li {
position: relative;
}

.nav-links a {
text-decoration: none;
color: white;
font-weight: 600;
padding: 10px 20px;
display: block;
transition: background-color 0.3s ease, transform 0.3s ease;
background-color: rgba(0, 0, 0, 0.1); /* Fondo sutil */
border-radius: 5px; /* Bordes redondeados */
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Sombra debajo del texto */
}

.nav-links a:hover {
background-color: #ea5898;
border-radius: 5px;
transform: scale(1.05); /* Efecto de ampliación */
box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3); /* Sombra más fuerte al pasar el mouse */
}

/* Dropdown styles */
.dropdown {
position: relative;
}

.dropdown-content {
display: none;
position: absolute;
background-color: #ea5898;
width: 200px;
z-index: 999;
top: 100%;
left: 0;
border-radius: 0 0 10px 10px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.dropdown:hover .dropdown-content {
display: block;
}

.dropdown-content a {
color: white;
padding: 0.75rem 1rem;
text-align: left;
transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
background-color: #efed3f;
color: #333;
}

/* Ensuring the submenu is positioned correctly */
.dropdown-submenu {
position: relative;
}

.dropdown-submenu > .dropdown-content {
top: 0;
left: 100%;
margin-left: 1px;
border-radius: 0 10px 10px 0;
}

/* Mobile Menu styles */
.menu-toggle {
display: none;
cursor: pointer;
background: #ea5898;
color: white;
padding: 0.5rem 1rem;
border-radius: 8px;
}

.bar {
display: block;
width: 25px;
height: 3px;
margin: 5px auto;
background-color: #fdf6f6;
transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
.menu-toggle {
    display: block;
}

nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #5bb9eb;
    margin-top: 1rem;
}

nav ul li {
    width: 100%;
}

nav ul.show {
    display: flex;
}

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #5bb9eb;
}

.nav-links.active {
    display: flex;
}

.nav-links li {
    margin: 10px 0;
}

.nav-links a {
    padding: 15px;
    font-size: 18px;
}
}
* Para Solicitar Turno */
.solicitar-turno {
    text-align: center;
    padding: 20px 0;
    background-color: #efed3f;
    border-top: 3px solid #ea5898;
    margin-top: 40px;
}

.solicitar-turno h2 {
    font-size: 28px;
    color: #ea5898;
    margin-bottom: 15px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.button {
    display: flex;
    align-items: center;
    color: #fff;
    background-color: #ea5898;
    padding: 12px 18px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
}

.button:hover {
    transform: scale(1.1);
    background-color: #5bb9eb;
}

.instagram-button {
    background-color: #ea5898;
}

.whatsapp-button {
    background-color: #25d366;
}
icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}
/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #5bb9eb;
    color: #fdf6f6;
}

header {
    background-color: #00c2f2;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1000;
  }
  
  .title img {
    max-height: 60px;
  }
  
  .navbar {
    width: 100%;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  
  .nav-links li {
    position: relative;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    display: block;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  }
  
  .nav-links a:hover {
    background-color: #ea5898;
    transform: scale(1.05);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #ea5898;
    width: 200px;
    top: 100%;
    left: 0;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .dropdown-content a {
    color: white;
    padding: 0.75rem 1rem;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #efed3f;
    color: #333;
  }
  
  /* Botón hamburguesa */
  .menu-toggle {
    display: none;
    cursor: pointer;
    background: #ea5898;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-top: 10px;
  }
  
  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fdf6f6;
    transition: all 0.3s ease-in-out;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
      position: absolute;
      top: 10px;
      right: 20px;
      z-index: 1001;
    }
  
    .nav-links {
      flex-direction: column;
      align-items: center;
      background-color: #5bb9eb;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      display: none;
      padding-bottom: 1rem;
      text-align: center;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links li {
      margin: 10px 0;
      width: 100%;
    }
  
    .dropdown-content {
      display: none;
      flex-direction: column;
      background-color: #ea5898;
      width: 100%;
      box-shadow: none;
      border-radius: 0;
      position: relative;
    }
  
    .dropdown.active .dropdown-content {
      display: flex;
    }
  
    .dropdown .dropbtn::after {
      content: " ▼";
    }
  }
  .footer {
    background-color: #5bb9eb;
    padding: 2rem 1rem;
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    border-top: 4px solid #ea5898;
    margin-top: 3rem;
  }
  
  .footer-content {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .footer p {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
  }
  
  .social-icons a {
    color: white;
    font-size: 1.6rem;
    transition: transform 0.3s, color 0.3s;
  }
  
  .social-icons a:hover {
    transform: scale(1.2);
  }
  
  .whatsapp:hover {
    color: #25d366;
  }
  
  .instagram:hover {
    color: #e1306c;
  }
  
  .facebook:hover {
    color: #1877f2;
  }
  .youtube:hover {
    color: #ff0000;
  }
  
  @media (max-width: 768px) {
    .footer p {
      font-size: 0.9rem;
    }
  
    .social-icons a {
      font-size: 1.4rem;
    }
  }
  